home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / utility / dboss3.zip / DBX-SBF.DOC < prev    next >
Text File  |  1992-04-07  |  2KB  |  64 lines

  1.  
  2.  
  3.                         DOS COMMAND SHELL BATCH FILES
  4. ------------------------------------------------------------------------------
  5.  
  6. OVERVIEW
  7.  
  8.  1  DOS commands may be executed from any DOS BOSS menu by the use of DOS
  9.     COMMAND SHELL BATCH FILES.  Unlike batch files used to execute menu
  10.     activity programs, DOS BOSS will remain in memory.
  11.  
  12.  2  DOS COMMAND SHELL BATCH FILES may be used for improved productivity and
  13.     expanded DOS COMMAND SHELL applications.
  14.  
  15. BATCH FILE MAINTENANCE
  16.  
  17.  1  Select BATCH FILE MAINTENANCE to create a DOS COMMAND SHELL BATCH FILE.
  18.  
  19.     (A)  Enter DOS command data like any other batch file.
  20.  
  21.     (B)  Assign a batch file name according to the syntax example.
  22.  
  23. ACTIVITY DEFINITION
  24.  
  25.  1  Enter the following data for COMMAND OR PROGRAM.  The .BAT file name
  26.     extension is optional.
  27.  
  28.         SHELL FILENAME.BAT
  29.  
  30. SINGLE KEYSTROKE DATA BACKUP
  31.  
  32.  1  To minimize the loss of valuable data, a backup copy should be maintained.
  33.     Several backup copies are even better.
  34.  
  35.  2  The following example illustrates how a batch file might be used to back
  36.     up a group of similar files.  Since DOS BOSS will clear the display
  37.     first, the CLS (clear display) command is not necessary.
  38.  
  39.     ECHO INSERT DATA BACKUP DISK IN DRIVE A:
  40.  
  41.     PAUSE
  42.  
  43.     COPY C:\BOSS\DBX-???? A:
  44.  
  45.     PAUSE
  46.  
  47.     The above COPY command may be replaced by the BACKUP command.  Files saved
  48.     with the BACKUP command must be restored with the RESTORE command.
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.                                     12-1